home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / DelphiDotNet / VclFrameTemplate.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-10-22  |  308 b   |  22 lines

  1. unit [!UnitName];
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  7.   Dialogs;
  8.  
  9. type
  10.   T[!FormName] = class(T[!AncestorName])
  11.   private
  12.     { Private declarations }
  13.   public
  14.     { Public declarations }
  15.   end;
  16.  
  17. implementation
  18.  
  19. {$R *.nfm}
  20.  
  21. end.
  22.